Data Filtering
Command Prototype
objDatatable = Datatable.QueryDataTable(dtTable,strQueryExpress)
Command Description
Use an expression to filter data from a datatable
Parameter Description
- Required Parameter
- dtTable--The data table to be filtered
- strQueryExpress--The conditions used for filtering data, for example: "column.str.contains('redotai') and column1>1" represents data in the lines whose 'column' contains 'redotai' and 'column1' is larger than 1
- return
- objDatatable--The variable used to save the output of the function call